{% extends 'dashboards/base_dashboard.html' %} {% load custom_filters %} {% block extra_css %} {% endblock %} {% block stats %}
Here's what's happening in {{ ministry.name|default:'your ministry' }} today
{% widthratio completed_tasks total_tasks 100 %}% completed
{{ in_progress_tasks }} in progress
{{ pending_tasks }} tasks pending
{{ departments.count }} total departments
| Title | Department | Assigned To | Priority | Status | Due Date | Actions |
|---|---|---|---|---|---|---|
| {{ task.title|truncatechars:30 }} | {{ task.assigned_to.department.name|default:"-" }} | {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} | {{ task.get_priority_display }} | {{ task.get_status_display }} | {{ task.due_date|date:"M d, Y"|default:"-" }} | |
| No tasks found | ||||||
| Name | Department | Active Tasks | Status | Actions | |
|---|---|---|---|---|---|
| {{ dg.get_full_name|default:dg.username }} | {{ dg.email }} | {{ dg.department.name|default:"-" }} | {{ dg.assigned_tasks.count }} tasks | {{ dg.is_active|yesno:"Active,Inactive" }} | |
| No Director Generals found | |||||
| Department | Director General | Members | Tasks | Completion | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ dept.name }}
{{ dept.description|default:''|truncatechars:40 }}
|
{{ dept.director_general.get_full_name|default:"-" }} | {{ dept.member_count|default:0 }} |
{{ dept.completed_tasks|default:0 }} /
{{ dept.total_tasks|default:0 }}
|
{% widthratio dept.completed_tasks dept.total_tasks 100 %}% | {{ dept.is_active|yesno:"Active,Inactive" }} | |
| No departments found | ||||||